home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
pascal
/
ovrhan.com
/
UNIT3.PAS
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1990-01-09
|
182 b
|
17 lines
{$O+,F+}
unit Unit3;
interface
procedure test;
implementation
procedure test;
begin
WriteLn('Unit3 test procedure');
end { test } ;
end { Unit3 } .